home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Hops2.h < prev    next >
C/C++ Source or Header  |  1999-02-04  |  1KB  |  39 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef hops2H
  3. #define hops2H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9.  
  10. #include "Movie2.h"
  11. #include <vcl\ExtCtrls.hpp>
  12.  
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:  // IDE-verwaltete Komponenten
  17.     TPanel *Panel1;
  18.     TButton *ShowButton;
  19.     TButton *TurnButton;
  20.     TButton *HideButton;
  21.     TButton *MoveButton;
  22.     TButton *EndButton;
  23.     void __fastcall FormCreate(TObject *Sender);
  24.     void __fastcall ShowButtonClick(TObject *Sender);
  25.     void __fastcall HideButtonClick(TObject *Sender);
  26.     void __fastcall EndButtonClick(TObject *Sender);
  27.     void __fastcall MoveButtonClick(TObject *Sender);
  28.     void __fastcall TurnButtonClick(TObject *Sender);
  29.     
  30. private:      // Benutzer-Deklarationen
  31.   TMovie *Movie1;
  32. public:       // Benutzer-Deklarationen
  33.     __fastcall TForm1(TComponent* Owner);
  34. };
  35. //---------------------------------------------------------------------------
  36. extern TForm1 *Form1;
  37. //---------------------------------------------------------------------------
  38. #endif
  39.